letter at index of string c#

95

letter at index of string c# -

string s = "hello";
char c = s[1];
// now c == 'e'

Comments

Submit
0 Comments